home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / Libraries / Aidan's Class Libraries / Source / Headers / CLWindowList.h < prev    next >
Encoding:
Text File  |  1997-05-24  |  263 b   |  19 lines  |  [TEXT/CWIE]

  1. //Copyright (c) 1997 Aidan Cully
  2. //All rights reserved
  3.  
  4. #ifndef __WINDOWLIST_H
  5. #define __WINDOWLIST_H
  6.  
  7. #include "CLList.h"
  8.  
  9. class TBaseWindow;
  10.  
  11. class TWindowList:
  12.     public TList<TBaseWindow*>
  13. {
  14. public:
  15.     virtual Boolean Remove();
  16.     virtual ~TWindowList();
  17. };
  18.  
  19. #endif